error = NULL;
GTK_NOTE (PRINTING,
- g_print ("FILE Backend: Writting %i byte chunk to temp file\n", length));
+ g_print ("FILE Backend: Writting %u byte chunk to temp file\n", length));
while (length > 0)
{
}
GTK_NOTE (PRINTING,
- g_print ("FILE Backend: Wrote %i bytes to temp file\n", written));
+ g_print ("FILE Backend: Wrote %zd bytes to temp file\n", written));
data += written;
length -= written;
}
GTK_NOTE (PRINTING,
- g_print ("FILE Backend: Writting %i byte chunk to target file\n", bytes_read));
+ g_print ("FILE Backend: Writting %lu byte chunk to target file\n", bytes_read));
return TRUE;
}